/* 自托管字体 — 替代被墙的 Google Fonts，国内可直连。
   variable font：一个文件覆盖全字重；font-display:swap 先用系统字体兜底，绝不阻塞渲染。 */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/manrope.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/sora.woff2") format("woff2");
}
