/* 字体修复 - 完全禁用本地字体引用 */

/* 覆盖 style.css 中的所有字体引用 */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    /* 不加载任何字体文件，直接使用本地字体 */
    src: local('Arial');
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local('Arial');
}

/* 强制使用系统字体，避免加载外部字体文件 */
* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif !important;
}

/* 阻止所有 @font-face 加载 */
@supports (font-family: inherit) {
    * {
        font-family: inherit !important;
    }
}
