/* 图妙自托管字体入口。
   - 钉钉进步体：运行 `npm run fonts` 下载到 ./dingtalk/（已子集化，按需加载）
   - 阿里妈妈方圆体 / 仓耳渔阳体：把对应 woff2 放到 public/fonts/ 下（文件名见下），
     或本机已安装时直接用系统字体。均可免费商用，官网自行下载字体文件。 */

/* 自托管：钉钉进步体（npm run fonts 后生效；未下载时此 @import 静默失败，自动回退） */
@import url('./dingtalk/font.css');

/* 拖入式自托管：把字体文件命名为下列名字放到 public/fonts/ 即可全站生效；
   未放置时优先用系统已安装的同名字体，再回退到模板默认。 */
@font-face {
  font-family: 'Alimama FangYuanTi VF';
  src: local('Alimama FangYuanTi VF'), local('AlimamaFangYuanTiVF'),
    url('/fonts/AlimamaFangYuanTiVF.woff2') format('woff2');
  font-weight: 200 700;
  font-display: swap;
}
@font-face {
  font-family: 'TsangerYuYangT W01';
  src: local('TsangerYuYangT W01'), local('仓耳渔阳体W01'),
    url('/fonts/TsangerYuYangT_W01.woff2') format('woff2');
  font-display: swap;
}
