/* Alvi Nastaleeq — self-hosted Urdu Nastaliq font (not on Google Fonts/any
   CDN; the .ttf was supplied directly by the app owner). Linked as a plain
   stylesheet from index.html rather than imported into src/index.css
   because CRA's css-loader treats url() in webpack-processed CSS as a JS
   module request even for root-absolute paths, which fails to compile for
   a plain public/ asset. This file is served as-is, so the browser
   resolves these url()s against the site root normally.

   woff2 first (build-time converted from the source .ttf — ~5.2MB vs
   9.5MB) with the original .ttf as a fallback for anything that can't
   parse woff2. See src/index.css for the html[lang="ur"] rules that
   actually apply this font to the Urdu UI. */
@font-face {
  font-family: 'Alvi Nastaleeq';
  src: url('/fonts/AlviNastaleeq.woff2') format('woff2'),
       url('/fonts/AlviNastaleeq.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
