/* ==========================================================================
   Thmanyah typeface — @font-face definitions (per-app subset of the kit).

   Source of truth: the private kit `arj-89/thmanyah-fonts`. Only the four
   faces this page actually renders are bundled here (Deploy Standards §6.5 —
   don't ship publicly fetchable files the page never fetches). The .woff2
   files themselves are the kit's originals, byte-for-byte: nothing is
   modified, subsetted, or renamed.

   Weights available here: Sans 400 / 500 / 700, Serif Display 700.
   Need another weight or the Serif Text family? Re-run the kit's
   scripts/install-fonts.sh and re-add the face below.

   LICENSE: proprietary (thmanyah). Bundled into this app's own build and
   served same-origin, which the license permits. NEVER serve these from a
   shared or public font endpoint. See the kit's LICENSE-NOTE.md.
   ========================================================================== */

/* ---------- Thmanyah Sans ---------- */
@font-face {
  font-family: "Thmanyah Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/thmanyahsans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Thmanyah Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/thmanyahsans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Thmanyah Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/thmanyahsans-Bold.woff2") format("woff2");
}

/* ---------- Thmanyah Serif Display (headings only) ---------- */
@font-face {
  font-family: "Thmanyah Serif Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/thmanyahserifdisplay-Bold.woff2") format("woff2");
}

:root{
  --font-thmanyah-sans: "Thmanyah Sans", system-ui, -apple-system, Tahoma, sans-serif;
  --font-thmanyah-serif-display: "Thmanyah Serif Display", "Thmanyah Sans", Georgia, serif;
}
