/* ============================================================================
   FORRENTMALAGA — tipografias autohospedadas
   ----------------------------------------------------------------------------
   EB Garamond  -> titulos
   Manrope      -> cuerpo / UI

   NO se carga NADA desde Google Fonts ni desde ningun CDN externo, a proposito:
   estas paginas son el check-in del huesped, donde se introducen datos de
   documento de identidad y domicilio (RGPD). Una peticion a un tercero para
   traer una fuente filtraria la IP del huesped y el hecho de que esta haciendo
   un check-in. Ademas la app debe funcionar sin depender de terceros.
   Si alguna vez ves un @import o un <link> a fonts.googleapis.com en este
   proyecto, es un bug: bajate el .woff2 y sirvelo desde aqui.

   Uso:
     <link rel="stylesheet" href="/static/fonts/fuentes.css">
   Stacks recomendados:
     titulos: font-family: "EB Garamond", Georgia, "Times New Roman", serif;
     cuerpo : font-family: "Manrope", system-ui, -apple-system, "Segoe UI",
                           Roboto, "Helvetica Neue", Arial, sans-serif;

   Los ficheros son instancias ESTATICAS (una por peso) generadas desde las
   fuentes variables originales, con los subconjuntos latin + latin-ext ya
   fusionados en el mismo fichero — por eso no hace falta unicode-range ni hay
   varias descargas por peso. Cubren castellano, catalan, gallego, euskera y el
   resto de idiomas de alfabeto latino europeo (incluidos los del este).
   Procedencia y licencia de cada fichero: ./LICENCIAS.md
   ========================================================================== */

/* ---------- EB Garamond (titulos) — OFL 1.1 ---------- */

@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/fonts/ebgaramond-500.woff2") format("woff2");
}

@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/ebgaramond-600.woff2") format("woff2");
}

/* ---------- Manrope (cuerpo / UI) — OFL 1.1 ---------- */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/manrope-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/manrope-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/manrope-700.woff2") format("woff2");
}
