/* 自定义字体加载 */
@font-face {
  font-family: 'CustomFont';
  src: url('https://pics.mark79.cn/font/396317527c40a215-s.p.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 应用字体到网站标题 */
#site-title {
  font-family: 'CustomFont', sans-serif !important;
}

/* 确保字体在移动设备上也能正确显示 */
@media screen and (max-width: 768px) {
  #site-title {
    font-family: 'CustomFont', sans-serif !important;
  }
}