All you really need to test for uniformity is something like:
Code:
Sub TestFonts()
With ActiveDocument.Range
If .Font.Name = "" Then .InsertBefore "Check Font Name" & vbCr
If .Font.Size = 9999999 Then .InsertBefore "Check Font Size" & vbCr
End With
End Sub