/* الخط الرسمي: Cairo
   الأوزان المختارة: 400, 600, 700, 800
   السبب: الأفضل للموبايل والسيو
*/

/* 1. النص العادي (Regular - 400) */
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cairo-v28-latin_arabic-regular.woff2') format('woff2');
}

/* 2. شبه سميك (Semi-Bold - 600) */
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/cairo-v28-latin_arabic-600.woff2') format('woff2');
}

/* 3. سميك (Bold - 700) */
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/cairo-v28-latin_arabic-700.woff2') format('woff2');
}

/* 4. سميك جداً (Extra-Bold - 800) */
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/cairo-v28-latin_arabic-800.woff2') format('woff2');
}

/* تعميم الخط على كامل المشروع */
:root {
    --font-primary: 'Cairo', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
li,
div {
    font-family: var(--font-primary) !important;
}