/*
 * Self-hosted fonts — Fraunces + Inter (latin subset, woff2).
 * Servido como static desde /fonts/ (no pasa por webpack).
 * Cargado en index.html vía <link rel="stylesheet">.
 *
 * font-display: swap → no bloquea render. Fallback stack ui-serif/ui-sans-serif
 * mientras descarga. ~84 KB total las 4 weights críticas.
 */

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/fraunces-400.woff2') format('woff2');
    unicode-range: U+0020-007E, U+00A0-024F, U+2010-205E;
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/fraunces-600.woff2') format('woff2');
    unicode-range: U+0020-007E, U+00A0-024F, U+2010-205E;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-400.woff2') format('woff2');
    unicode-range: U+0020-007E, U+00A0-024F, U+2010-205E;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter-600.woff2') format('woff2');
    unicode-range: U+0020-007E, U+00A0-024F, U+2010-205E;
}
