/* DEFERRED FONTS — only Barlow 700 and Barlow Condensed 700.
 *
 * These weights are used exclusively below the fold (button labels,
 * "EYEBROW" small-caps, bold runs in body copy). They are NOT needed for
 * FCP or LCP. Splitting their @font-face into this separate file (loaded
 * async after the main page paints) means:
 *
 *   • The main CSS bundle no longer references these fonts during initial
 *     parse, so the browser doesn't discover them at HTML-parse time and
 *     race to fetch them on the critical path.
 *   • PSI Network dependency tree on mobile no longer flags 300+ms
 *     critical-path latency from these fonts.
 *   • Visitors see correct fonts the moment they scroll into bold/button
 *     content — and if the network is too slow, fallback metrics
 *     (size-adjust + ascent-override below) prevent layout shift.
 */

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/Barlow-700.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/BarlowCondensed-700.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
