/* ── fonts.css ──────────────────────────────────────────────────────────────
   Local faces. Karantina is the brand face, declared as ONE family with
   three real weights — not three families each claiming weight:normal, which
   is how the current site declares it and why font-weight has no effect there.
   ───────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Karantina";
  src: url("/fonts/Karantina-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karantina";
  src: url("/fonts/Karantina-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karantina";
  src: url("/fonts/Karantina-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
