/* 萌芽熊信件页手写体：自托管 woff2/ttf（ZCOOL KuaiLe / Ma Shan Zheng，OFL 协议）。
 *
 * 此文件托管于后端 /static/fonts 目录（与字体同目录），由 web/index.html 用
 * <link href="/static/fonts/mengyaxiong-fonts.css"> 引入。独立成文件而非 index.html 内联
 * <style>：vite build 会把 index.html 内联 CSS 抽成代理模块并尝试解析 url()，而字体是
 * 运行时 /static mount 的资源（不在 web/ 构建图里），会导致 "No matching HTML proxy module"。
 * 走 <link> 与 fontawesome 同套路——vite 仅告警 "doesn't exist at build time" 并保留原路径。
 *
 * 行为与原内联一致：font-display:swap + 按需拉取（仅 /mengyaxiong 渲染手写体时才下载
 * 字体文件，不污染其它页首屏）。@font-face family 名保持原名，萌芽熊页 document.fonts.load(...)
 * 与 LetterPhase inline fontFamily 无需改动。 */
@font-face {
  font-family: 'ZCOOL KuaiLe';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./ZCOOLKuaiLe.woff2') format('woff2'),
       url('./ZCOOLKuaiLe.ttf') format('truetype');
}
@font-face {
  font-family: 'Ma Shan Zheng';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./MaShanZheng.woff2') format('woff2'),
       url('./MaShanZheng.ttf') format('truetype');
}
