回答:
Slide Masterを編集する必要があります。すべてのフォントを、スライドマスターのすべてのスライドで必要なフォントとして設定します。
上記の提案により、タイトル/本文/その他のテキストのフォントを変更できます。プレースホルダー(新しいスライドに表示される「ここをクリック」のもの)。他のテキストには影響しません。そのためには、VBAを少し使用する必要があります。
Sub TextFonts()
Dim oSl As Slide
Dim oSh As Shape
Dim sFontName As String
' Edit this as needed:
sFontName = "Times New Roman"
With ActivePresentation
For Each oSl In .Slides
For Each oSh In oSl.Shapes
With oSh
If .HasTextFrame Then
If .TextFrame.HasText Then
.TextFrame.TextRange.Font.Name = sFontName
End If
End If
End With
Next
Next
End With
End Sub