/* 本地字体替代方案 - 使用系统字体栈 */

/* 无衬线字体栈（替代 Geist） */
@font-face {
  font-family: 'GeistLocal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Segoe UI'), local('Roboto'), local('Helvetica Neue'), local('Arial');
}

@font-face {
  font-family: 'GeistLocal';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Segoe UI Semibold'), local('Roboto Medium'), local('Helvetica Neue Medium');
}

@font-face {
  font-family: 'GeistLocal';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Segoe UI Bold'), local('Roboto Bold'), local('Helvetica Neue Bold');
}

/* 等宽字体栈（替代 Geist Mono） */
@font-face {
  font-family: 'GeistMonoLocal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Consolas'), local('Monaco'), local('Courier New'), local('monospace');
}

@font-face {
  font-family: 'GeistMonoLocal';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Consolas'), local('Monaco'), local('Courier New');
}

/* 全局字体替换 */
body, html {
  font-family: 'GeistLocal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

code, pre, kbd, samp, .mono, .font-mono {
  font-family: 'GeistMonoLocal', 'Consolas', 'Monaco', 'Courier New', monospace !important;
}