﻿/* 1. تعريف الخط العادي (Regular) */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-v31-arabic_latin-regular.woff2') format('woff2');
    font-weight: 400; /* أو normal */
    font-style: normal;
    font-display: swap; /* تضمن ظهور النص مباشرة بخط بديل حتى يكتمل تحميل الخط */
}

/* 2. تعريف الخط العريض (Bold 700) */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-v31-arabic_latin-700.woff2') format('woff2');
    font-weight: 700; /* أو bold */
    font-style: normal;
    font-display: swap;
}

/* 3. تطبيق الخط على الموقع بالكامل */
body, html {
    font-family: 'Cairo', Tahoma, Arial, sans-serif;
}
