/**
 * Self-hosted Plus Jakarta Sans — replaces the Google Fonts CDN request.
 * Lighthouse flagged the CDN round-trip (DNS + TLS to fonts.googleapis.com,
 * then a second one to fonts.gstatic.com for the actual file) as the
 * single largest contributor to the critical-path latency on this site.
 *
 * Google serves Plus Jakarta Sans as a variable font — every static weight
 * from 400 to 800 requested from the CSS2 API resolved to the exact same
 * physical woff2 file (confirmed by diffing the URLs Google's own API
 * returned), so one `font-weight: 400 800` range rule covers the whole
 * regular range in a single file, rather than one file per weight. Only
 * the Latin subset is included (this site has no non-Latin content) and
 * only the one italic weight actually used (500, per the "1,500" in the
 * original Google Fonts request in git history).
 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('plus-jakarta-sans-normal.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: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('plus-jakarta-sans-italic-500.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;
}
