/* ==========================================================
   FONT LOADING
   Acme Gothic Compressed – z Adobe Typekit (CDN)
   Inter Tight – lokální soubory
   ========================================================== */

/* Volitelné: Adobe Typekit helper CSS */
@import url("https://p.typekit.net/p.css?s=1&k=fri8ewo&ht=tk&f=40125.40126&a=83500427&app=typekit&e=css");

/* =========================
   Acme Gothic Compressed (headings) – ONLINE (Adobe Typekit)
   Pouze váhy 400 a 600
   ========================= */
@font-face {
    font-family: "Acme Gothic Compressed";
    src:
      url("https://use.typekit.net/af/ee42cd/00000000000000007735b9db/31/l?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n4&v=3") format("woff2"),
      url("https://use.typekit.net/af/ee42cd/00000000000000007735b9db/31/d?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n4&v=3") format("woff"),
      url("https://use.typekit.net/af/ee42cd/00000000000000007735b9db/31/a?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n4&v=3") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
}

@font-face {
    font-family: "Acme Gothic Compressed";
    src:
      url("https://use.typekit.net/af/62cb8c/00000000000000007735b9d9/31/l?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n6&v=3") format("woff2"),
      url("https://use.typekit.net/af/62cb8c/00000000000000007735b9d9/31/d?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n6&v=3") format("woff"),
      url("https://use.typekit.net/af/62cb8c/00000000000000007735b9d9/31/a?primer=a859b15c287b4c2476f2749f0ef308a8ec8c8611338231277d016b7ee9a52f92&fvd=n6&v=3") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
}

/* =========================
   Inter Tight (body) – lokální soubory
   ========================= */
@font-face {
    font-family: "Inter Tight";
    src: url("../../fonts/custom/InterTight-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter Tight";
    src: url("../../fonts/custom/InterTight-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter Tight";
    src: url("../../fonts/custom/InterTight-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter Tight";
    src: url("../../fonts/custom/InterTight-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================
   Cassiopeia compatibility
   ========================= */
:root {
    --cassiopeia-font-family-body: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --cassiopeia-font-family-headings: "Acme Gothic Compressed", var(--cassiopeia-font-family-body);
}

body {
    font-family: var(--cassiopeia-font-family-body);
}

h1, h2, h3, h4, h5, h6,
.page-header h1 {
    font-family: var(--cassiopeia-font-family-headings);
}

/* Zabránit syntetickému "fake bold" */
h1, h2, h3, h4, h5, h6,
.typo-h1, .typo-h1-xl, .typo-h2, .typo-h3, .typo-h4 {
    font-synthesis: none;
}