/*
 * Vazirmatn — the single UI font for every hosted page (auth, account,
 * admin, error pages).
 *
 * Self-hosted on purpose. The application CSP (see App\Http\Middleware\
 * SecurityHeaders) allows only `style-src 'self'` and `font-src 'self'`,
 * so a font pulled from a third-party CDN is blocked by the browser and
 * every page silently falls back to Tahoma. Serving it from our own
 * origin is the only way the font actually renders — and it removes a
 * third-party request from the login path.
 *
 * One variable file covers the whole 100–900 weight range, so adding a
 * new weight in a stylesheet needs no extra download.
 *
 * Vazirmatn v33.003 by Saber Rastikerdar, SIL Open Font License 1.1.
 * License text: public/fonts/OFL.txt
 */

@font-face {
    font-family: Vazirmatn;
    src: url('fonts/vazirmatn-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
