/* 1. 引入中文网字计划提供的 CSS 链接 */
@import url('https://chinese-fonts-cdn.deno.dev/packages/maple-mono-cn/dist/MapleMono-CN-Light/result.css');

/* 2. 应用到全局 */
:root {
  --global-font-family: 'MapleMono-CN-Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --global-font-size: 16px;
}

body {
  font-family: var(--global-font-family) !important;
}

/* 3. 针对标题单独优化（可选） */
#site-title, #site-subtitle, .article-title, h1, h2, h3, h4, h5, h6 {
  font-family: var(--global-font-family) !important;
  font-weight: bold;
}