Summary of the other answers:
If you do not support some ones name you may cause them hardship. (rdentato) This may lead to a Tort cases; i.e getting sued.
Guinness World Record for Longest Name is 802 characters. (Dynite)
You must support Unicode characters in the name. (rdentato)
You must support Punctuation like Hyphens; in all parts of the name. (rdentato) (RichH)
Accept one word names. (RichH)
Accept one letter names. (e k)
The structure, layout and number of names are dependant on the culture. e.g. 'Latin Americans and Spaniards use 2
surnames" (japinedaf)
Most countries have a different conventions to the USA. First Name,Initial,Last Name is inadequate even in the USA.
Usually American names have 3 parts, Latin names have 4 parts, Arabic names have 7 parts. (Mike Post)
Don't limit titles/appelations. Mr, Mrs & Ms are insufficient. People can have multiple titles e.g. Rev. Dr.. (Matt Lacey)
Consider using varchar(max) and let the database deal with it. (TheOtherScott)
Consider any interactions with legacy systems.Such as SSIS uses nvarchar(255) when importing data from Excel.
Use a single large free form field for the complete proper name. Use another free form field for the 'preferred' name. (mat_geek)
Implement a sophisticated modern search if the records may need to be located by name. (mat_geek)
And as always, sanitise your input for SQL Injection attacks. (Chris Ballard)
See: XKCD (jeff)