/* 本地字体替代方案 - 消除 Google Fonts 外部依赖 */

/* 使用系统字体栈作为替代方案 */
:root {
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 覆盖原有的字体设置 */
body {
  font-family: var(--font-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
}

/* 如果使用了 Lato 或 Poppins，使用系统字体替代 */
[class*="font-lato"],
[class*="font-poppins"],
[style*="Lato"],
[style*="Poppins"] {
  font-family: var(--font-primary) !important;
}
