/* ============================================================
   BlackPrint — Fonts
   Primary typeface: Work Sans (all UI, web, print, marketing).
   Display/secondary: Bai Jamjuree (technical headers, occasional
   wordmark-adjacent display). Shipped from local TTFs.
   ============================================================ */

/* Work Sans, Bai Jamjuree (400/500/600) e IBM Plex Mono venían de Google Fonts
   en tres @import. Ahora se sirven auto-hospedadas desde /fonts/, con los
   mismos ejes, pesos e itálicas. Regenerar con `npm run fonts`.
   Los pesos 200/300/700 de Bai Jamjuree siguen saliendo de los TTF de la
   marca, declarados más abajo. */
@import url('/fonts/fuentes.css');

/* Bai Jamjuree — local files (uploaded by the brand) */
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/BaiJamjuree-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/BaiJamjuree-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/BaiJamjuree-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/BaiJamjuree-BoldItalic.ttf") format("truetype");
}
