/* console_M8 本地字体(SPEC console-theme 修订注记 D-f)。
   **为什么本地**:Google Fonts 是**浏览器**去 fonts.googleapis.com 取,不是服务端 ——
   老板与店员的浏览器在国内取不到,上线即缺字体回落系统字体 = 换肤半成品。
   故 woff2 落本仓自托管,零外部请求。

   **只带 latin 子集**:中文本来就走系统字体(PingFang SC / 宋体),
   拉丁与中文按字形各自回落,一条 font-family 同时管两种字。
   Karla 为可变字体,单文件覆盖 400–700;Playfair Display SC 逐字重两文件。
   授权:两者均 SIL Open Font License 1.1,见 fonts/LICENSE-OFL.txt。

   本文件只放 @font-face,不含任何其他规则 —— 五个页面(index/work/board/
   login/denied)各自 <link> 它,定义只此一份。 */

@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/karla-400-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/playfair-display-sc-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/playfair-display-sc-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
