/* Fuentes alojadas localmente (31-ago-2026).
   Antes venían de fonts.googleapis.com y la CSP las bloqueaba (style-src 'self').
   Se vendorizan en vez de ampliar la CSP: ampliarla habría abierto las cuatro
   páginas demo, no solo esta.

   Son fuentes VARIABLES: un archivo por familia y estilo cubre todo el rango de
   pesos, declarado con font-weight de rango. Descargar uno por peso guardaba
   copias idénticas del mismo archivo.

   Cormorant Garamond y Karla: SIL Open Font License 1.1. */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("./fonts/cormorant-garamond-italic.woff2") format("woff2");
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/cormorant-garamond.woff2") format("woff2");
}

@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/karla.woff2") format("woff2");
}
