/* ==========================================================================
   Dumbo Growth Lab — Tipografías
   Coloca los archivos en esta carpeta (assets/fonts/) con estos nombres
   exactos y las @font-face de abajo funcionarán sin tocar nada más.
   Ver assets/fonts/README.txt para el detalle.

   Editorial New llegó como .otf (es como se distribuye la familia). Se
   convirtió a .woff2 para que cargue de forma fiable también en móviles
   —algunos navegadores de Android no cargan .otf— y pese la mitad. El .otf
   queda como respaldo en el mismo src.
   ========================================================================== */

/* --- PRINCIPAL: Axiforma (títulos, UI) ---------------------------------- */
@font-face {
  font-family: "Axiforma";
  src: url("./axiforma-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Axiforma";
  src: url("./axiforma-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Axiforma";
  src: url("./axiforma-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- SECUNDARIA: Editorial New (editorial, citas, cuerpos destacados) --- */
@font-face {
  font-family: "Editorial New";
  src: url("./editorial-new-regular.woff2") format("woff2"),
       url("./editorial-new-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Editorial New";
  src: url("./editorial-new-italic.woff2") format("woff2"),
       url("./editorial-new-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Cortes finos (peso 200). El itálico normal de Editorial New tiene mucho
   contraste y se lee bastante marcado; el ultralight es la versión más
   ligera de la familia, que es la que se usa en la landing para la frase
   editorial. */
@font-face {
  font-family: "Editorial New";
  src: url("./editorial-new-ultralight.woff2") format("woff2"),
       url("./editorial-new-ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Editorial New";
  src: url("./editorial-new-ultralight-italic.woff2") format("woff2"),
       url("./editorial-new-ultralight-italic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
