/* Paper & Cuts — Webfonts

   WORDMARK / LOGOTYPE (brand-specified, now self-hosted from licensed files):
     - "PAPER & CUTS"               -> Myriad Pro Bold Condensed, tracking -25
     - "DISEÑO GRÁFICO E IMPRESIÓN" -> Myriad Pro Light, tracking +75, centered
   Uploaded Myriad Pro OTFs are wired below as @font-face. Two families are
   declared: "Myriad Pro" (normal width, Light→Bold) and "Myriad Pro Condensed"
   (Cond + Bold Cond). The wordmark token prefers the Condensed family.

   Editorial / UI / display (Google Fonts CDN — not user-uploaded, left as-is):
     - Archivo Black -> big display headlines
     - Archivo       -> body / UI
     - Space Mono    -> technical "print spec" labels */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ---- Myriad Pro (normal width) ---- */
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-SEMIBOLDIT.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-BOLDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Myriad Pro Condensed ---- */
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("../fonts/MYRIADPRO-COND.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("../fonts/MYRIADPRO-CONDIT.OTF") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("../fonts/MYRIADPRO-BOLDCOND.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("../fonts/MYRIADPRO-BOLDCONDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
