/* ==========================================================================
   Thmanyah typeface — @font-face definitions (Qeema: Sans family only)
   --------------------------------------------------------------------------
   Qeema's brand profile is sans-only (Build Plan §4.4), so the Serif Display
   and Serif Text families from the kit are not bundled. To add them later,
   re-run thmanyah-fonts/scripts/install-fonts.sh into public/.

   Each .woff2 already contains both Arabic and Latin glyphs, so no
   `unicode-range` splitting is needed. No italics.

   LICENSE: proprietary (thmanyah). Bundle these files into your own compiled
   app, served same-origin. Do NOT serve them from a shared/public font
   endpoint. See the thmanyah-fonts repo README / LICENSE-NOTE.
   ========================================================================== */

@font-face {
  font-family: "Thmanyah Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/thmanyahsans-Light.woff2") format("woff2");
}
@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");
}
@font-face {
  font-family: "Thmanyah Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./fonts/thmanyahsans-Black.woff2") format("woff2");
}

/* Use via: font-family: var(--font-thmanyah-sans);
   The fallback stack keeps Arabic + Latin readable before the web font loads. */
:root {
  --font-thmanyah-sans: "Thmanyah Sans", system-ui, "Segoe UI", Tahoma, Arial, sans-serif;
}
