/* ==========================================================================
   VOTE360 · FUENTES SELF-HOSTED (Tema 2026)
   ==========================================================================
   Única declaración de @font-face de toda la app (público y dashboard).
   Los woff2 viven en webroot/fonts/ y son VARIABLES: un archivo cubre
   todos los pesos. Nunca volver a fonts.googleapis.com (render-blocking,
   ver SEO_GEO_AUDIT.md §7).

   Roles tipográficos (ver SISTEMA_GRAFICO_2026.md §4):
     Geist            → todo el texto de interfaz y títulos
     Geist Mono       → cifras, códigos, cédulas, eyebrows, tablas numéricas
     Instrument Serif → acento editorial en itálica (una palabra, no párrafos)
   ========================================================================== */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/geist-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/geist-mono-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif.woff2') format('woff2');
}
