Sub CaptionTime()
' Change whole document to the Diavlo family of fonts

    Selection.WholeStory
    Selection.Font.Name = "Diavlo Book"
    Selection.Find.Font.Bold = True

        With Selection.Find.Replacement.Font
            .Name = "Diavlo Black"
            .Bold = True
        End With
    Selection.Find.Execute Replace:=wdReplaceAll
End Sub

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Sub AstroTime()
' CC Astro macro to automatically replace text between square brackets
    
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    
    With Selection.Find
        .Text = "(\[)(*)(\])"
        .Replacement.Text = "\1\2\3"
            With Selection.Find.Replacement.Font
                .Name = "CC Astro City"
            End With
        .Forward = True
        .Wrap = wdFindContinue
        .Format = True
        .MatchCase = False
        .MatchWholeWord = False
        .MatchAllWordForms = False
        .MatchSoundsLike = False
        .MatchWildcards = True
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
End Sub