/* =====================================================
   Cairo Font Family – Fully Offline (Arabic + Latin)
   Weights: 400 (Regular), 600 (SemiBold), 700 (Bold), 800 (ExtraBold)
   ===================================================== */

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Override Tabler's Inter with Cairo for the entire app */
:root {
    --tblr-font-sans-serif: 'Cairo', Tahoma, Arial, sans-serif;
}

body {
    font-family: 'Cairo', Tahoma, Arial, sans-serif;
}
