/*
 * "Li Ador Noirrit" (Lipighor Font Foundry) — the app's primary Bangla
 * display/body font, sourced from public/fonts/filament/filament/inter/
 * primary_font_light.ttf (a plain static asset, not part of the Vite/
 * Tailwind build — it just needs to sit somewhere web-servable and be
 * @font-face'd, same as Filament's own bundled Inter files next to it).
 *
 * font-weight is declared as a single, accurate value (300 — this file IS
 * the "Light" static weight) rather than a wide range. A wide range
 * (e.g. 100–900, tried first and found too thin app-wide — "shob jaygay
 * beshi chikon dekha jaitese") tells the browser this one face already
 * natively covers every weight, which suppresses font-synthesis: every
 * font-weight utility (font-medium, font-bold, even the default 400
 * body text) rendered as the exact same thin Light glyphs. Declaring the
 * true single weight instead means any *other* requested weight falls
 * outside it, so the browser's default synthetic-bold kicks in — normal
 * and bold text both actually look heavier than raw Light.
 */
@font-face {
    font-family: 'Li Ador Noirrit';
    src: url('/fonts/filament/filament/inter/primary_font_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
