Custom font isn’t active on all PCs

There is an error in your CSS Declarations on your page.

If you change the line 152 on your style.css from “font-family: Oz Handicraft;’ (and anyplace else you’re using it) to:

    h1 {
    font-family: Oz;
    }

since in your code, you have this.

@font-face{
    font-family: Oz;
    src: url("fonts/ozHandicraft.otf");
    font-weight: normal;
}

you declare it as such. If you make this change, it works fine on my screen, and I don’t have this font installed on my desktop.

Other solution is to simply update your @font-face and put this instead:

 @font-face{
    font-family: Oz Handicraft;
    src: url("fonts/ozHandicraft.otf");
    font-weight: normal;
}