/* ============================== */
/* فونت وزیر - فایل CSS جداگانه */
/* شامل Regular, Medium/Semi-Bold, Bold, Black */
/* ============================== */

/* Regular - وزن 400 */
@font-face {
  font-family: 'Vazir';
  src: url('/fonts/Vazir-Regular.woff2') format('woff2'),
       url('/fonts/Vazir-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium / Semi-Bold - وزن 600 */
@font-face {
  font-family: 'Vazir';
  src: url('/fonts/Vazir-Medium.woff2') format('woff2'),
       url('/fonts/Vazir-Medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Bold - وزن 700 */
@font-face {
  font-family: 'Vazir';
  src: url('/fonts/Vazir-Bold.woff2') format('woff2'),
       url('/fonts/Vazir-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Black - وزن 800 */
@font-face {
  font-family: 'Vazir';
  src: url('/fonts/Vazir-Black.woff2') format('woff2'),
       url('/fonts/Vazir-Black.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* نمونه استفاده */
body {
  font-family: 'Vazir', sans-serif;
  font-weight: 400; /* متن معمولی */
}

h1 {
  font-weight: 700; /* Bold */
}

.medium-text {
  font-weight: 600; /* Semi-Bold / Medium */
}

.black-text {
  font-weight: 800; /* Black */
}