/*@font-face {
    font-family: 'INNIO';
    src: url('INNIO-Regular.eot');
    src: url('INNIO-Regular.eot?#iefix') format('embedded-opentype'),
        url('INNIO-Regular.woff2') format('woff2'),
        url('INNIO-Regular.woff') format('woff'),
        url('INNIO-Regular.svg#INNIO-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'INNIO Headline';
    src: url('INNIOHeadline-Bold.eot');
    src: url('INNIOHeadline-Bold.eot?#iefix') format('embedded-opentype'),
        url('INNIOHeadline-Bold.woff2') format('woff2'),
        url('INNIOHeadline-Bold.woff') format('woff'),
        url('INNIOHeadline-Bold.svg#INNIOHeadline-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'INNIO';
    src: url('INNIO-Bold.eot');
    src: url('INNIO-Bold.eot?#iefix') format('embedded-opentype'),
        url('INNIO-Bold.woff2') format('woff2'),
        url('INNIO-Bold.woff') format('woff'),
        url('INNIO-Bold.svg#INNIO-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*/
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Replace INNIO Regular with Poppins Regular */
body, .some-class {  /* Replace with actual selectors */
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular */
}

/* Replace INNIO Headline with Poppins Bold */
.innioheadline {  /* Replace with actual selectors */
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold */
}

/* Replace INNIO Bold with Poppins SemiBold */
.bold-class {  /* Replace with actual selectors */
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* SemiBold */
}

/* Remove old @font-face rules for INNIO */