/* Self-hosted Google Fonts (Inter + Playfair Display, latin subset, variable).
 *
 * Migrado de fonts.googleapis.com / fonts.gstatic.com a hosting local
 * para eliminar 2 RTTs externos y 1 TLS handshake en cada visita.
 * Sustituye el bloque <link> de Google Fonts en includes/header.php.
 *
 * Cada fuente es un "variable font" (un solo archivo cubre todos los
 * pesos del rango solicitado). Para Inter cubre 100..900, para
 * Playfair Display cubre 400..900.
 *
 * font-display: swap -> texto visible con fallback mientras carga.
 *
 * El subset "latin" (U+0000-00FF) cubre espanol (acentos, enye).
 * Si en el futuro se anade cirilico/griego/vietnamita, descargar
 * el subset correspondiente desde Google Fonts y replicar el @font-face.
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter-Variable.woff2') format('woff2-variations'),
         url('../fonts/Inter-Variable.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: 'Playfair Display';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay-Variable.woff2') format('woff2-variations'),
         url('../fonts/PlayfairDisplay-Variable.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;
}
