/* 本地字体文件 - 替代Google Fonts CDN */

/* 使用系统字体和备用字体 */
/*
注意：原本的Instrument Sans字体文件为空，现在使用系统字体作为备用
如果需要特定字体，请提供有效的字体文件
*/

/* Material Symbols Outlined 字体 */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('/build/assets/material-symbols-outlined-BDRtoJUL.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* 基础系统字体栈 - 作为备用 */
body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
} 