/*
 * Self-hosted fonts. Both files are variable fonts — one woff2 per family
 * covers the full weight range. Replaces the Google Fonts CDN <link> in head.php.
 *
 * Performance wins:
 *  - No DNS round-trip to fonts.googleapis.com + fonts.gstatic.com
 *  - No render-blocking external stylesheet
 *  - Bytes served from same origin (better caching, no CORS overhead)
 *  - Privacy: no per-visitor request to Google
 */

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fraunces.woff2') format('woff2-variations'),
         url('fraunces.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('inter.woff2') format('woff2-variations'),
         url('inter.woff2') format('woff2');
}
