/* ============================================================
   FS CUSTOM WELDS — Fuentes auto-alojadas (PRODUCCIÓN)
   ------------------------------------------------------------
   POR QUÉ: cargar Google Fonts desde fonts.googleapis.com envía
   la IP de cada visitante a Google. En la UE eso ya ha dado
   sanciones (RGPD). Auto-alojar = cero dependencia de Google,
   carga más rápida y funciona aunque Google se caiga.

   CMO (YA HECHO — Cristia subió los woff2 el 11/06/2026):
   Los archivos viven en  fonts/  y este CSS ya está enlazado en los
   tres HTML. Si algún día hay que regenerarlos:
   https://gwfh.mranftl.com (google-webfonts-helper), formato woff2.

   Familias y pesos usados en la web:
   · Barlow Condensed  500, 600, 700   (titulares)
   · Barlow            400, 500, 600   (texto)
   · IBM Plex Mono     400, 500        (datos, precios, kickers)
   ============================================================ */

/* ───── Barlow Condensed ───── */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ───── Barlow ───── */
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ───── IBM Plex Mono ───── */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
