/**
 * TourTheme – Self-hosted font declarations.
 *
 * This file is loaded by inc/enqueue.php when present on disk.
 * Noto Sans Arabic is served locally from /assets/fonts/ via the
 * @font-face blocks below.
 *
 * To replace the placeholder .woff2 stubs with real font files:
 * 1. Download Noto Sans Arabic from fonts.google.com/noto.
 * 2. Convert to woff2 (e.g. via cloudconvert.com or fonttools).
 * 3. Drop the files into /assets/fonts/ using the same names:
 *
 *      noto-sans-arabic-400.woff2
 *      noto-sans-arabic-600.woff2
 *      noto-sans-arabic-700.woff2
 *
 * WHY SELF-HOSTED?
 * ----------------
 * Self-hosting eliminates the external Google Fonts HTTP request, improves
 * GDPR compliance (no data sent to Google), reduces DNS look-up latency, and
 * gives full control over cache headers and sub-setting.
 *
 * @package TourTheme
 */

@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../fonts/noto-sans-arabic-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../fonts/noto-sans-arabic-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../fonts/noto-sans-arabic-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
