/* 
This file:
- Loads fonts
- Assigns basic font styles
*/

/* Loading fonts */

/* @font-face {
  font-family: "Monaspace _____ VF";
  src: 
    url('../../fonts/MonaspaceArgonVarVF[wght\,wdth\,slnt].woff2') 
    format('woff2 supports variations'),
    url('../../fonts/MonaspaceArgonVarVF[wght\,wdth\,slnt].woff2') 
    format('woff2-variations');
  font-stretch: 100% 125%;
  font-style: oblique 0deg 11deg;
  font-weight: 200 800;
  font-display: swap;
} */

@font-face {
  font-family: "iA Writer Quattro S";
  src: 
  url('../../fonts/iAWriterQuattroS-Bold.woff2') 
  format('woff2');
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "iA Writer Quattro S";
  src: 
  url('../../fonts/iAWriterQuattroS-BoldItalic.woff2') 
  format('woff2');
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "iA Writer Quattro S";
  src: 
  url('../../fonts/iAWriterQuattroS-Italic.woff2') 
  format('woff2');
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "iA Writer Quattro S";
  src: 
  url('../../fonts/iAWriterQuattroS-Regular.woff2') 
  format('woff2');
  font-style: normal;
  font-weight: 400;
}

/* Basic text settings */

html {
  font-family: "iA Writer Quattro S", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: rgb(244, 243, 199);
  font-size: 15px;
  line-height: 1.2;
}

.emphasis {
  font-style: oblique;
}

.bold {
  font-weight: 700;
}

p {
  margin: 0;
}

article p, article ul, article ol {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.2;
  font-size: 16px;
}
article p {
  margin-bottom: 8px;
}

a {
  text-decoration: underline solid;
  color: #F4F3C6;
}
a.visited {
  color: #a9a889;
}
a.hover {
  color: #ff4cc3;
}

/* Special text effects */

.glow {
  text-shadow: 0px 0px 12px #F4F3C6;
}
  