/* 自定义字体样式 */

/* 全局字体 - 使用更现代的无衬线字体 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Microsoft YaHei", "微软雅黑" !important;
}

/* 标题字体 */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Microsoft YaHei", sans-serif !important;
  font-weight: 600 !important;
}

/* 代码字体 */
code, pre, .highlight {
  font-family: "Consolas", "Monaco", "Courier New", monospace !important;
}

/* 导航栏字体 */
#nav {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", sans-serif !important;
}

/* 文章标题 */
.post-title, .page-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", sans-serif !important;
  font-weight: 700 !important;
}

/* 优化字体渲染 */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
