@font-face {
  font-family: 'MyFont';
  src: url('/font/font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 引入代码字体（shaonv.ttf） */
@font-face {
  font-family: 'MyCodeFont';
  src: url('/font/JetBrainsMono-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 设置全局字体 */
body, .article-entry {
  font-family: 'MyFont', "Georgia", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.article-entry h1,
.article-entry h2,
.article-entry h3,
.article-entry h4,
.article-entry h5,
.article-entry h6 {
  font-family: 'MyFont', "Georgia", "Arial", sans-serif;
}

/* 设置代码字体 */
code, pre .article-entry code, .article-entry pre {
  font-family: 'MyCodeFont', "Fira Code", "Courier", monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}