/* Lusail — the club's custom typeface.
 *
 * One family for BOTH Latin and Arabic; weight does the work. Mirrors the
 * design system's tokens/fonts.css and the Flutter app's pubspec registration.
 *
 * Self-hosted and static — no build step, and no external font CDN (this
 * replaced a Google/Bunny-hosted Changa link, which was a runtime dependency
 * on a third party for a first-party brand asset).
 *
 * Client-supplied typeface: licensed to embed in Lusail SC products, not for
 * redistribution. Served as public static files here — the club has decided
 * that trade-off consciously (see BUILD-TASKS.md); revisit if that changes.
 * URLs are relative to this file rather than root-absolute, so an APP_URL
 * subpath deploy still resolves.
 */

@font-face {
    font-family: 'Lusail';
    src: url('Lusail-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lusail';
    src: url('Lusail-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lusail';
    src: url('Lusail-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lusail';
    src: url('Lusail-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
