/* Self-hosting a font in CSS */
@font-face {
  font-family: 'adineuePRO';
  src: url('/assets/fonts/adineuePRO-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'adineuePRO';
  src: url('/assets/fonts/adineuePRO-Regular.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

body {
    font-family: 'adineuePRO', sans-serif;
}

h1 {
    font-family: 'adineuePRO', serif;
    font-weight: bold;
}

h4 {
    font-family: 'adineuePRO', serif;
    font-weight: bold;
}