/* inter-local.css
 * --------------------------------------------------------------
 * FIX 2026-07-30 MASH: fuentes Inter auto-hospedadas para evitar
 * la dependencia de fonts.googleapis.com (bloqueado por CSP
 * en algunos VPS). Antes, el HTML cargaba:
 *
 *   <link href="https://fonts.googleapis.com/css2?family=Inter...">
 *
 * Eso fallaba con "bloqued:csp" en Plesk (segunda CSP de nginx)
 * y en VPS (CSP del server).
 *
 * Solucion: servir Inter localmente desde /empresa/assets/fonts/.
 * Las 5 weights (regular, medium, semibold, bold, extrabold) se
 * incluyen como WOFF2 (formato moderno, ~110KB cada una).
 *
 * Compatibilidad: WOFF2 es soportado por todos los browsers
 * modernos (Chrome 36+, Firefox 39+, Safari 12+, Edge 14+).
 * Si el browser es muy viejo, cae a sans-serif del sistema.
 *
 * Cache: los WOFF2 son archivos estaticos. Nginx/Apache los sirven
 * con cache de 1 ano (configurado en el .htaccess root). El CSS
 * tambien.
 * -------------------------------------------------------------- */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2?v=4.0') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-Medium.woff2?v=4.0') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2?v=4.0') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-Bold.woff2?v=4.0') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Inter-ExtraBold.woff2?v=4.0') format('woff2');
}
