/*
 * Tour fonts — portable under /tour/fonts
 * Same families as admin: Vazirmatn + IRANSansX FaNum
 */

/* ——— Vazirmatn ——— */
@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn-Regular.ttf?v=1.0.2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn-Medium.ttf?v=1.0.2") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn-SemiBold.ttf?v=1.0.2") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn-Bold.ttf?v=1.0.2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("./Vazirmatn-ExtraBold.ttf?v=1.0.2") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ——— IRANSansX FaNum ——— */
@font-face {
  font-family: "IRANSansX FaNum";
  src: url("./IRANSansXFaNum-Regular.ttf?v=1.0.2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansX FaNum";
  src: url("./IRANSansXFaNum-Medium.ttf?v=1.0.2") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansX FaNum";
  src: url("./IRANSansXFaNum-DemiBold.ttf?v=1.0.2") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansX FaNum";
  src: url("./IRANSansXFaNum-Bold.ttf?v=1.0.2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansX FaNum";
  src: url("./IRANSansXFaNum-ExtraBold.ttf?v=1.0.2") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-vazir: "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
  --font-iran: "IRANSansX FaNum", "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
  --app-font-family: "Vazirmatn", "IRANSansX FaNum", Tahoma, "Segoe UI", sans-serif;
  --app-font-numeric: "IRANSansX FaNum", "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
  --user-font-family: var(--app-font-family);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.font-num,
[data-font="num"] {
  font-family: var(--app-font-numeric);
  font-variant-numeric: tabular-nums;
}
