/* 使用本地系统字体 */
:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}

/* 移除对Google Fonts的依赖 */
body {
  font-family: var(--font-sans);
}

code, pre {
  font-family: var(--font-mono);
}
