/*
 Theme Name:   GeneratePress MS
 Theme URI:    https://maxschmidt-baumgutachten.de/
 Description:  A GeneratePress Child Theme
 Author:       @voneff
 Author URI:   https://laikalaika.de
 Template:     generatepress
 Version:      0.1
*/

/*** Typography Basic Settings ***/

/* Loading Font Files */


@font-face {
  font-display: optional; 
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/unbounded-v12-latin-ext-300.woff2') format('woff2'), 
       url('fonts/unbounded-v12-latin-ext-300.ttf') format('truetype');
}
@font-face {
  font-display: optional; 
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/unbounded-v12-latin-ext-500.woff2') format('woff2'), 
       url('fonts/unbounded-v12-latin-ext-500.ttf') format('truetype');
}
@font-face {
  font-display: optional; 
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/unbounded-v12-latin-ext-600.woff2') format('woff2'), 
       url('fonts/unbounded-v12-latin-ext-600.ttf') format('truetype');
}
@font-face {
  font-display: optional; 
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/unbounded-v12-latin-ext-800.woff2') format('woff2'), 
       url('fonts/unbounded-v12-latin-ext-800.ttf') format('truetype');
}


/* Global Font Settings, GeneratePress-specific */

:root {
  --font-weight-regular: 300;
  --font-weight-bold: 500;
  --font-weight-heading: 600;
}

body,
button,
input,
select,
textarea {
  font-family: 'Unbounded', sans-serif;
  font-weight: var(--font-weight-regular);
}


strong,
b {
  font-weight: var(--font-weight-bold);
}

h1, h2, h3 {
  font-weight: var(--font-weight-heading);
}

/* Avoid synthetic font weights */

body {
  font-synthesis: none;
}


.editor-styles-wrapper {
  font-family: 'Unbounded', sans-serif;
  font-weight: var(--font-weight-regular);
}

.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
  font-family: 'Unbounded', sans-serif;
  font-weight: var(--font-weight-heading);
}