/**
 * Local Fonts Configuration
 * 本地字体配置
 * 
 * @description 使用系统字体栈作为Inter字体的替代方案
 * @version 1.0.0
 * @updated 2025-01-28
 */

/* 
 * 字体栈说明：
 * - 优先使用系统自带的现代无衬线字体
 * - 提供跨平台的一致性体验
 * - 无需下载外部字体文件，加载速度更快
 */

:root {
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                       "Helvetica Neue", Arial, "Noto Sans", sans-serif, 
                       "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", 
                       "Noto Color Emoji";
  
  --font-family-chinese: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                         "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
                         "微软雅黑", Arial, sans-serif;
}

/* 应用字体到全局 */
body {
  font-family: var(--font-family-chinese);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 英文内容使用系统字体 */
[lang="en"] {
  font-family: var(--font-family-base);
}

/* 
 * 如果将来需要使用Inter字体，取消下面的注释并下载字体文件
 * 字体下载地址：https://fonts.google.com/specimen/Inter
 */

/*
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-v12-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-v12-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-v12-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-v12-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter/inter-v12-latin-800.woff2') format('woff2');
}

body {
  font-family: 'Inter', var(--font-family-chinese);
}
*/
