HTML で標準フォントを使用したくない場合は、Google Fonts API を使用して他の何百ものフォントをページに追加できます。
スタイルシートのリンクを追加し、選択したフォント ファミリを参照するだけです。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
font-family: "Sofia";
font-size: 22px;
}
</style>
</head>
<body>
<h1>Sofia Font</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</body>
</html>