/* Font Display Optimization Override
 * Ensures text is visible during webfont load (FOUT instead of FOIT)
 * Improves Core Web Vitals: FCP, LCP, and CLS
 * 
 * Note: Font Awesome fonts from CDN already support font-display.
 * To force font-display: swap on custom fonts, define complete @font-face rules here.
 * 
 * Example for custom fonts:
 * @font-face {
 *   font-family: 'CustomFont';
 *   src: url('/fonts/customfont.woff2') format('woff2');
 *   font-display: swap;
 *   font-weight: normal;
 *   font-style: normal;
 * }
 */

/* Apply font-display swap via CSS when possible */
body {
    /* Ensures system fonts render immediately */
    font-display: swap;
}