/**
 * Luster Negin typography system.
 *
 * Estedad is bundled with the theme and loaded only from the local host.
 * Keep font files in assets/fonts/ and map only the weights used by the UI.
 */
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-Light.woff2') format('woff2');
  font-style:normal;
  font-weight:300;
  font-display:swap;
}
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-Regular.woff2') format('woff2');
  font-style:normal;
  font-weight:400;
  font-display:swap;
}
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-Medium.woff2') format('woff2');
  font-style:normal;
  font-weight:500;
  font-display:swap;
}
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-SemiBold.woff2') format('woff2');
  font-style:normal;
  font-weight:600;
  font-display:swap;
}
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-Bold.woff2') format('woff2');
  font-style:normal;
  font-weight:700;
  font-display:swap;
}
@font-face{
  font-family:'Estedad';
  src:url('../fonts/Estedad-ExtraBold.woff2') format('woff2');
  font-style:normal;
  font-weight:800;
  font-display:swap;
}

:root{
  --negin-font-body:'Estedad',Tahoma,Arial,sans-serif;
  --negin-font-heading:'Estedad',Tahoma,Arial,sans-serif;
}


/* Keep the WordPress block editor aligned with the public theme. */
.editor-styles-wrapper{
  font-family:var(--negin-font-body,'Estedad',Tahoma,Arial,sans-serif);
}
.editor-styles-wrapper :where(h1,h2,h3,h4,h5,h6){
  font-family:var(--negin-font-heading,'Estedad',Tahoma,Arial,sans-serif);
}
