/**
 * 方案 A 覆盖层：去掉商业字体名的 @font-face / local() 映射
 * 不点名微软雅黑、苹方等；不声明商业字体 @font-face
 * 图标字体 iconfont 使用独立 font-family + 自己的 @font-face，不受影响
 */

:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

html,
body {
  font-family: var(--font-sans) !important;
}

/* 主题模块容器统一回到通用栈（子元素未单独指定字体时继承即可） */
.wrap,
.site-page-enter,
.bossgoo-com-item,
.main,
.bossgoo-header-nav57,
.bossgoo-footer7 {
  font-family: var(--font-sans);
}
