/* Tipografias base del proyecto: Adobe Caslon Pro + Acumin Pro Condensed */
@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ACaslonPro';
  src: url('./fonts/ACaslonPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Medium Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AcuminProCond';
  src: url('./fonts/Acumin Pro Cond Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-title: 'ACaslonPro', 'Times New Roman', serif;
  --font-ui: 'AcuminProCond', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'AcuminProCond', 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

button,
input,
select,
textarea,
label {
  font-family: var(--font-ui);
}
