/**
 * 项目字体定义
 * 中文：微软雅黑 | 英文/数字：Space Grotesk
 * 字体文件位于本目录 (web/public/fonts)
 */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(./space-grotesk-latin-300-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(./space-grotesk-latin-400-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(./space-grotesk-latin-500-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(./space-grotesk-latin-600-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(./space-grotesk-latin-700-normal.woff2) format('woff2');
}

/* 全局字体栈：英文/数字用 Space Grotesk，中文用微软雅黑 */
:root {
  --font-family: 'Space Grotesk', 'Microsoft YaHei', '微软雅黑', sans-serif;
}
html {
  font-family: var(--font-family);
}
