/* تعریف فونت با آدرس مطلق */
@font-face {
    font-family: 'BZar';
    src: url('https://idealistic-world.com/font/BZar-0.woff2') format('woff2'),
         url('https://idealistic-world.com/font/BZar-0.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* اعمال فونت روی همه چیز به جز آیکون‌ها */
/* ما اینجا تمام کلاس‌هایی که با fa شروع می‌شوند (آیکون‌ها) را مستثنی می‌کنیم */
*:not([class*="fa-"]):not([class*="fas"]):not([class*="far"]):not([class*="fab"]):not(.dashicons):not(.dashicons-before) {
    font-family: 'BZar', Tahoma, Arial, sans-serif !important;
}

/* اطمینان از اعمال روی فیلدها و دکمه‌ها در تمام مرورگرها */
input, button, select, textarea, optgroup {
    font-family: 'BZar', Tahoma, Arial, sans-serif !important;
}