/*
==========================================================

PremiumZone

Sprint :
PZ-002

File :
assets/css/core/font.css

Description :
Global Font

==========================================================
*/

/* ==========================================================
   PZ FONT : IMPORT
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..800&display=swap");

/* ==========================================================
   PZ FONT : BODY
========================================================== */

html,

body{

    font-family:var(--pz-font);

    font-size:14px;

    font-weight:400;

    line-height:1.6;

    letter-spacing:.4px;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* ==========================================================
   PZ FONT : HEADING
========================================================== */

h1,

h2,

h3,

h4,

h5,

h6{

    font-weight:700;

    letter-spacing:1px;

}

/* ==========================================================
   PZ FONT : BUTTON
========================================================== */

button{

    font-family:inherit;

}

/* ==========================================================
   PZ FONT : INPUT
========================================================== */

input,

textarea,

select{

    font-family:inherit;

}