This largely depends on your development style, whether you have one person responsible for merging everybody's work and making things correct, or if you spread that out across your developers.
Because every clone is essentially its own repo, all your developers do get a "branch" of sorts, the one in their clone. They can further branch if they want, but when it comes time to push they will (by default) have to make sure their changes are linear with any changes on the central repository (if you use one central repository as the overlord).
As for your questions:
1) If you have a central bare shared repo you can just make "git branch" calls within it to create branches. Alternatively each developer can create a branch from master in their clone then push that branch up to create it.
2) merging between branches is pretty straight forward. If there are conflicts the developer will have to correct those during the merge and then that will be shown as a merge commit. If there are no conflicts then a merge will just appear as a series of commits being added to the branch.
3) If using the central repository setup, each member will periodically be doing "pull"s from said repo. Any new branches created or any updates to existing branches will come with that pull so that they can be sure to have the latest (shared) data. Otherwise one developer could request that another developer pull directly from their working repo to get access to code in progress for collaboration.
In my opinion, each developer having explicit individual branches in a shared repo may be more complexity than you want, unless you have somebody specifically tasked with merging changes from each developer into a production branch (or master). Just make sure each developer knows to pull (--rebase) before they try to push their changes up and re-test their changes if anything has changed in the shared repo.