/* ============================================================
   SMPlanner — typography (fonts.css)

   Thmanyah typeface (font.thmanyah.com) — free license, see
   assets/fonts/THMANYAH-LICENSE.pdf. Arabic-first with full
   Latin support, so UI text and Arabic captions share one
   family. System stack stays as fallback while fonts load
   (font-display: swap).
   ============================================================ */

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

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

@font-face {
  font-family: "Thmanyah Sans";
  src: url("/static/fonts/thmanyahsans-Bold.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* --font-ui: everyday interface text · --font-display: logo, titles, big numbers */
  --font-ui: "Thmanyah Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Thmanyah Serif Display", "Thmanyah Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
