/* ==========================================================
   TIPOGRAFÍAS AUTOALOJADAS

   Antes cada página pedía las fuentes a fonts.googleapis.com, que a su vez
   devolvía un CSS apuntando a fonts.gstatic.com. Eso son DOS orígenes más en
   la ruta crítica, y en móvil cada uno cuesta su propio DNS + TLS antes de
   bajar un solo byte útil: entre 0,8 y 2 s de espera pura.
   Sirviéndolas desde aquí van por la conexión que el navegador ya tiene
   abierta con neuracloud.org.pe.

   Los archivos .woff2 son exactamente los que servía Google (descargados el
   22/08/2026), con sus mismos unicode-range. Outfit es una fuente VARIABLE:
   un solo archivo cubre todo el rango de grosores 400-800, así que pedir
   font-weight 500 o 800 no descarga nada extra.

   El navegador solo descarga el subconjunto que la página necesita de verdad.
   En español eso es 'latin' y nada más: latin-ext está aquí por si algún texto
   trae caracteres fuera de Latin-1, y en la práctica casi nunca se pide.

   font-display: swap -> el texto se ve desde el primer instante con la fuente
   del sistema y cambia a la definitiva al llegar. Nunca hay texto invisible.

   LICENCIA: Outfit e Instrument Serif se distribuyen bajo SIL Open Font
   License 1.1, que permite explícitamente alojarlas uno mismo.

   PARA ACTUALIZARLAS: pide el CSS a Google con un User-Agent de Chrome, baja
   los .woff2 que liste y sustituye los de esta carpeta. Sin UA moderno Google
   devuelve formatos antiguos (ttf/eot) mucho más pesados.
   ========================================================== */

/* ---------- Outfit (variable, 400-800) ---------- */

/* latin-ext */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/assets/fonts/outfit-var-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/assets/fonts/outfit-var-latin.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;
}

/* ---------- Instrument Serif (solo la portada) ---------- */

/* latin-ext */
@font-face {
    font-family: 'Instrument Serif';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/instrument-serif-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Instrument Serif';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/instrument-serif-latin.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;
}

/* latin-ext, cursiva */
@font-face {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/instrument-serif-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin, cursiva */
@font-face {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/instrument-serif-italic-latin.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;
}
