/* fonts.css — Inter self-hosted (FUENTE ÚNICA).

   Files: /static/vendor/fonts/inter-{400,500,600}.woff2 — latin subset
   desde Google Fonts CDN (v13). font-display:swap mantiene la página
   navegable mientras descarga el woff2; el FOUT se ve sólo el primer
   load y dura <100 ms en LAN/Tailscale. unicode-range cubre latin/
   extended-latin (español argentino: ñ, á-ú, ¿, ¡, comillas, símbolos).

   Carga ANTES que tokens.css/style.css para que el browser empiece a
   descargar el woff2 mientras parsea el resto del CSS. */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/vendor/fonts/inter-400.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
        U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/static/vendor/fonts/inter-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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
        U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/static/vendor/fonts/inter-600.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
        U+FFFD;
}

/* JetBrains Mono — self-hosted (latin subset, woff2 variable que cubre
   400-600). Es el font mono de Stitch: hasta ahora --font-mono caía al
   mono del SISTEMA (SF Mono / Consolas) porque JBM no estaba hosteada, y
   los números se veían distintos al mockup. Un único archivo variable
   sirve todos los pesos que usamos. */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/static/vendor/fonts/jetbrains-mono.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
        U+FFFD;
}
