/* ============================================================
   فونت پینار (Pinar) — تعریف به‌عنوان webfont
   ------------------------------------------------------------
   ⚠️ پیش از این، فایل‌های TTF پینار در همین پوشه بودند ولی **هیچ
   @font-face** ای آن‌ها را معرفی نمی‌کرد. نتیجه: مرورگر رشتهٔ
   «Pinar, Vazirmatn, ...» را فقط روی دستگاه‌هایی حل می‌کرد که فونت
   پینار روی سیستم‌عاملشان نصب بود — یعنی کامپیوتر مدیر سایت پینار
   می‌دید و موبایلش وزیرمتن.

   اکنون پینار یک webfont واقعی است و روی هر دستگاهی یکسان لود می‌شود.

   نام خانواده: Pinar  (در CSS با همان نام صدا زده می‌شود)
   فایل‌ها: woff2 برای حجم کم، TTF به‌عنوان fallback برای مرورگرهای قدیمی
   ============================================================ */

@font-face {
    font-family: Pinar;
    src: url('pinar-light.woff2') format('woff2'),
         url('PINAR-LIGHT.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Pinar;
    src: url('pinar-regular.woff2') format('woff2'),
         url('PINAR-REGULAR.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Pinar;
    src: url('pinar-medium.woff2') format('woff2'),
         url('PINAR-MEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Pinar;
    src: url('pinar-bold.woff2') format('woff2'),
         url('PINAR-BOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
