/* ============================================================
   فایل مدیریت فونت سراسری - نرم‌افزار هامون
   فونت: Modam-Medium
   ============================================================ */

/* ====== ۱. تعریف فونت ====== */
@font-face {
    font-family: 'HamoonFont';
    src: url('/assets/fonts/Modam-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ====== ۲. اعمال به کل سایت ====== */
* {
    font-family: 'HamoonFont', Tahoma, sans-serif !important;
}

/* ====== ۳. اعمال به تگ‌های خاص ====== */
html, body, div, span, p, h1, h2, h3, h4, h5, h6,
input, select, textarea, button, label, a, li, td, th,
pre, code, blockquote, .nav-item, .card, .table, .form-control {
    font-family: 'HamoonFont', Tahoma, sans-serif !important;
}

/* ====== ۴. اگر فونت لود نشد ====== */
@supports not (font-variation-settings: normal) {
    * {
        font-family: Tahoma, sans-serif !important;
    }
}