/* TastePilot — privacy-preserving system font stack.
 * No third-party font request is made. Apple devices use the locally installed
 * SF family; other platforms fall back to their native UI sans-serif face.
 */

/* SF Pro is an Apple system font — declared via local() so it resolves to the copy already
 * installed on Apple devices. No files are shipped; on non-Apple systems these faces fail to
 * match and the Inter fallback in the token stack takes over. To ship real webfont files,
 * drop them in assets/fonts/ and add url() sources to the matching rule below. */
@font-face {
  font-family: "SF Pro Display";
  src: local("SF Pro Display"), local("SFProDisplay-Regular"), local(-apple-system);
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text";
  src: local("SF Pro Text"), local("SFProText-Regular"), local(-apple-system);
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Rounded";
  src: local("SF Pro Rounded"), local("SFProRounded-Regular"), local(ui-rounded);
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
