/* Self-hosted Zain (brand font), served same-origin from /fonts.
   WHY: the app used to load Zain only from Google Fonts (fonts.gstatic.com). When
   that cross-origin host is slow (cold-load FOUT on iOS), stale on a CDN edge, or
   BLOCKED (Arc's built-in blocker, ad-blockers, privacy DNS, corporate networks),
   Zain never loaded and EVERY element fell back to the system font. Served locally
   it can't be blocked and loads on the app's own connection.
   Lives in /public (NOT bundled) so the url()s stay literal and a <link> can pull
   it in the <head> before the JS bundle. Latin subset; app weights only.
   These are the ONLY Zain @font-face rules — Zain is stripped from every Google URL. */
@font-face {
  font-family: "Zain";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("zain-300.woff2") format("woff2");
}
@font-face {
  font-family: "Zain";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("zain-400.woff2") format("woff2");
}
@font-face {
  font-family: "Zain";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("zain-700.woff2") format("woff2");
}
@font-face {
  font-family: "Zain";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("zain-800.woff2") format("woff2");
}
@font-face {
  font-family: "Zain";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("zain-900.woff2") format("woff2");
}
