/* Majidi — self-hosted Tamil display 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 —
   see alvi-nastaleeq.css's comment for why (CRA's css-loader can't
   resolve a webpack-relative url() to a plain public/ asset).

   This file only ships one cut, and its own internal name/style tables
   mark it "Majidi Bold" (confirmed via fontTools — family "Majidi",
   subfamily "Bold", macStyle bold bit set) — there's no separate
   Regular weight to extract from a single .ttf. font-weight is declared
   as the full 100–900 range rather than a single value so the browser
   treats every Tailwind weight utility (font-medium/semibold/bold) as
   already satisfied by this one face instead of synthesizing an even
   heavier fake-bold on top of glyphs that are already bold by design —
   see the font-synthesis: none backstop in src/index.css for the same
   reason. */
@font-face {
  font-family: 'Majidi';
  src: url('/fonts/Majidi.woff2') format('woff2'),
       url('/fonts/Majidi.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
