/* =============================================================
   Casona San José — Self-hosted Fonts
   Self-hosting elimina DNS lookup a fonts.googleapis.com y
   fonts.gstatic.com — sin peticiones de terceros en producción.

   Origen: Google Fonts CSS API — subset latin únicamente
   (cubre todo el español: á é í ó ú ü ñ Ñ y diacríticos)

   Archivos descargados (3 únicos — Google sirve variable ranges):
     cormorant-garamond-300-400.woff2   37 KB  (normal wght 300-400)
     cormorant-garamond-300-italic.woff2  22 KB  (italic wght 300)
     dm-sans-400-500.woff2              62 KB  (normal wght 400-500)
   ============================================================= */

/* -----------------------------------------------------------
   CORMORANT GARAMOND — Display / titulares
   ----------------------------------------------------------- */

/* Normal, pesos 300 y 400 — un solo archivo variable */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style:  normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-300-400.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;
}

/* Italic, peso 300 — quotes y momentos emocionales */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style:  italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-300-italic.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;
}

/* -----------------------------------------------------------
   DM SANS — Body / UI
   ----------------------------------------------------------- */

/* Normal, pesos 400 y 500 — un solo archivo variable */
@font-face {
  font-family: 'DM Sans';
  font-style:  normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/dm-sans-400-500.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;
}
